home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / TextParser.idl < prev    next >
Text File  |  1996-05-01  |  3KB  |  95 lines

  1. /*
  2.      File:        TextParser.idl
  3.  
  4.      Contains:    International Text Parser Interfaces.
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __TEXTPARSER_IDL__
  19. #define __TEXTPARSER_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __CONDITIONALMACROS_IDL__
  25. #include <ConditionalMacros.idl>
  26. #endif
  27. #if FOR_SYSTEM8_PREEMPTIVE
  28. #ifndef __TYPES_IDL__
  29. #include <Types.idl>
  30. #endif
  31. #ifndef __TEXTOBJECTS_IDL__
  32. #include <TextObjects.idl>
  33. #endif
  34. #ifndef __TEXTCOMMON_IDL__
  35. #include <TextCommon.idl>
  36. #endif
  37. #ifndef __LOCALEOBJECTS_IDL__
  38. #include <LocaleObjects.idl>
  39. #endif
  40. #endif
  41.  
  42. #ifdef __SOMIDL__
  43.  
  44. #if FOR_SYSTEM8_PREEMPTIVE
  45. typedef OpaquePtr                TTextParseRef;
  46.  
  47. typedef UInt32                    ParsingToken;
  48.  
  49. typedef ParsingToken            BasicToken;
  50.  
  51. typedef ParsingToken            RangeToken;
  52.  
  53. typedef ParsingToken            KeywordToken;
  54.  
  55. typedef ParsingToken            MultiChoiceToken;
  56.  
  57. typedef ParsingToken            ComposedToken;
  58.  
  59. /*defintions for the future*/
  60. typedef ParsingToken            RegExpToken;
  61.  
  62. typedef ParsingToken            GrammarRuleToken;
  63.  
  64. /*definition of Pointers to tokens*/
  65. typedef OpaquePtr                ParsingTokenPtr;            /* Substituted OpaquePtr for ``ParsingToken*'' */
  66.  
  67. typedef ParsingTokenPtr            BasicTokenPtr;
  68.  
  69. typedef ParsingTokenPtr            RangeTokenPtr;
  70.  
  71. typedef ParsingTokenPtr            KeywordTokenPtr;
  72.  
  73. typedef ParsingTokenPtr            MultiChoiceTokenPtr;
  74.  
  75. typedef ParsingTokenPtr            ComposedTokenPtr;
  76.  
  77. typedef OptionBits                ParsingOptionBits;
  78.  
  79. typedef LocaleObjectRef            ParserLocaleObjectRef;
  80.  
  81. /* Basic Tokens definitions (try to match system 7 tokens when possible*/
  82. typedef SOMLargeStruct            CharacterRange;                /* Derived from a struct of 8 bytes in size */
  83.  
  84. typedef OpaquePtr                CharacterRangePtr;            /* Substituted OpaquePtr for ``CharacterRange*'' */
  85.  
  86. /*============================================================locale object parser APIs====================================================*/
  87. /*======================================================Iterator creation/modifcation==========================================================*/
  88. /*======================================================Tokens Get/Set APIs ==========================================================*/
  89. #endif
  90.  
  91. #endif /* __SOMIDL__ */
  92.  
  93. #endif /* __TEXTPARSER_IDL__ */
  94.  
  95.